b73e114a2d27ce58113745bfacb95c3018f739b3,modules/basics/src/main/java/com/opengamma/strata/basics/index/ImmutableIborIndex.java,ImmutableIborIndex,ImmutableIborIndex,#String#Currency#boolean#HolidayCalendarId#LocalTime#ZoneId#DaysAdjustment#DaysAdjustment#TenorAdjustment#DayCount#,271

Before Change


      DayCount dayCount) {
    JodaBeanUtils.notNull(name, "name");
    JodaBeanUtils.notNull(currency, "currency");
    JodaBeanUtils.notNull(fixingCalendar, "fixingCalendar");
    JodaBeanUtils.notNull(fixingTime, "fixingTime");
    JodaBeanUtils.notNull(fixingZone, "fixingZone");
    JodaBeanUtils.notNull(fixingDateOffset, "fixingDateOffset");
    JodaBeanUtils.notNull(effectiveDateOffset, "effectiveDateOffset");
    JodaBeanUtils.notNull(maturityDateOffset, "maturityDateOffset");
    JodaBeanUtils.notNull(dayCount, "dayCount");

After Change


    this.name = ArgChecker.notNull(name, "name");
    this.currency = ArgChecker.notNull(currency, "currency");
    this.active = active;
    this.fixingCalendar = ArgChecker.notNull(fixingCalendar, "fixingCalendar");
    this.fixingTime = ArgChecker.notNull(fixingTime, "fixingTime");
    this.fixingZone = ArgChecker.notNull(fixingZone, "fixingZone");
    this.fixingDateOffset = ArgChecker.notNull(fixingDateOffset, "fixingDateOffset");
    this.effectiveDateOffset = ArgChecker.notNull(effectiveDateOffset, "effectiveDateOffset");
    this.maturityDateOffset = ArgChecker.notNull(maturityDateOffset, "maturityDateOffset");
    this.dayCount = ArgChecker.notNull(dayCount, "dayCount");